home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00166_Hilite to, hop ved klik.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  503 b   |  20 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 1
  3.   set the visible of sprite (the currentSpriteNum + 1) to 0
  4.   set the visible of sprite (the currentSpriteNum + 2) to 0
  5. end
  6.  
  7. on mouseEnter me
  8.   set the visible of sprite (the currentSpriteNum + 1) to 1
  9.   set the visible of sprite (the currentSpriteNum + 2) to 1
  10. end
  11.  
  12. on mouseLeave me
  13.   set the visible of sprite (the currentSpriteNum + 1) to 0
  14.   set the visible of sprite (the currentSpriteNum + 2) to 0
  15. end
  16.  
  17. on mouseUp me
  18.   go(#next)
  19. end
  20.